home *** CD-ROM | disk | FTP | other *** search
/ All About the French Know-How at E3 2000 (USA) / All About the French Know-How at E3 2000 (USA).bin / Data / 15008 / TheoBr01.cab / _2E49953E000B11D48F08965B7DEAC134 < prev    next >
Text File  |  2000-03-01  |  35KB  |  1,239 lines

  1. <HTML>
  2. <HEAD>
  3. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  4. <TITLE>Quizz GB</TITLE>
  5. <link REL="stylesheet" TYPE="text/css" HREF="Style%20Sheet1.css">
  6. <SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
  7. <!--
  8.  
  9. var scoreQuiz ;
  10. var IndexQuestion ;
  11.  
  12.  
  13. var TexteReponse ;
  14. var Tableaujuste = new Array(0,1,2,1,1,1,1,2,0,1,0,0) ;
  15.  
  16. var TabCommentaires = new Array("It waits until autumn and floats down on a leaf.!",
  17.                                 "Everyone knows that there are four places in a mini, two in front and two behind.",
  18.                                 "ThereÆs a mini car parked outside the front door.",
  19.                                 "However, the jeweller could take the five links of one chain to link the remaining five chains to make one large circular one.",
  20.                                 "First, each robber takes five pearls. There are then six pearls left. As the junior members have already received their share, the senior robbers divide the remaining pearls between them : six senior robbers.",
  21.                                 "If  x is the age of the donkey, we have :   x + 4 = 3(x-4)         x = 8 " ,
  22.                                 "The donkey must be grey and therefore the first two guesses were correct and the third guess wrong.",
  23.                                 "You can take a horse to water but you canÆt make him drink.",
  24.                                 "Make hay whilst the sun shines.",
  25.                                 "According to fact one, Jim canÆt be the eledest. According to fact two, John is the yougest. If, in fact one, John isnÆt the eldest, it must be Jack. Jack, then Jim, then John.",
  26.                                 "Jack and Jim contradict each other, one of them lied and one told the truth.But, since two lied, John must be one of them and thus it was he that stole the donkey.",
  27.                                 "If Jim stole the horse, then his statement, which agrees with JackÆs, is false and contrary to the fact that the thief told the truth. Therefore Jim is not guilty. If John is guilty, then all three spoke the truth, again contrary to the the condition that at least one of them lied. Therefore, Jack is guilty, he spoke the truth and stole the horse, whilst both Jim and John lied.");
  28.  
  29. function InitQuizz()
  30. {
  31.     scoreQuiz = 0 ;
  32.     IndexQuestion = 0  ;
  33.     QuizzGB1.style.display = "none" ;
  34.     NextQuestion.style.display = "none" ;
  35.     aide.style.display = "block" ;
  36.     
  37. }
  38.  
  39. function window_onload() 
  40. {
  41.     //au dΘmarrage on affiche le texte d'aide .
  42.     
  43.     
  44.     InitQuizz() ;    
  45. }
  46.  
  47.  
  48. function start_onclick()
  49. {
  50.     var TexteQuestion = document.all.item("QuizzGB1") ;
  51.     var TexteAide = document.all.item("aide") ;
  52.     TexteAide.style.display = "none" ;
  53.     var collQuestion = QuizzGB1.all.item("question") ;
  54.     
  55.     // une seule question α la fois
  56.     for( i = 0 ; i < collQuestion.length ; i++)
  57.     {
  58.         if( IndexQuestion == i )
  59.             collQuestion[i].style.display = "block" ;
  60.         else
  61.             collQuestion[i].style.display = "none" ;
  62.     }
  63.     // On affiche la question
  64.     TexteQuestion.style.display = "block" ;
  65.     
  66.  
  67. function verifie_reponse(Index)
  68. {
  69.     
  70.     var IsAnswer = false ;
  71.     var TheAnswer ;
  72.     var collforms ;
  73.     var indexchoix ; // la rΘponse choisie par l'utilisateur
  74.     var collQuestion = QuizzGB1.all.item("question") ;
  75.     var collreponses = NextQuestion.all.item("reponse") ;
  76.     var collchoix ; // la collection des rΘponses
  77.     var radio ; // la collection des boutons
  78.     collform = collQuestion[IndexQuestion].all.item("form") ;
  79.     radio = collform.item("radiobutton") ;
  80.     collchoix = collreponses[IndexQuestion].all.item("choix");
  81.     for( i = 0; i < radio.length ; i ++ )
  82.     {
  83.         if( radio[i].checked == true )
  84.         {    
  85.         
  86.             IsAnswer = true ;
  87.             TheAnswer = i ;
  88.             collchoix[i].style.display = "block" ;
  89.         }
  90.         else
  91.             collchoix[i].style.display = "none" ;
  92.     }
  93.     
  94.     if( IsAnswer == false )
  95.     {
  96.         alert("You must give an answer!") ;
  97.         return ;
  98.     }
  99.     // on affiche la rΘponse
  100.     QuizzGB1.style.display = "none" ;
  101.     NextQuestion.style.display = "block" ;
  102.     collreponses[IndexQuestion].style.display = "block" ;
  103.     
  104.     //rΘponse juste ?
  105.     if( TheAnswer == Tableaujuste[IndexQuestion] )
  106.     {
  107.         
  108.         scoreQuiz++ ;
  109.     }
  110.     // on affiche le commentaire
  111.     var Localscore = comments.all.item("lescore") ;
  112.     Localscore.innerText = "SCORE :" + scoreQuiz ;
  113.     var LocalComment = comments.all.item("lecommentaire") ;
  114.     LocalComment.innerText = TabCommentaires[IndexQuestion] ;
  115.     comments.style.display = "block" ;    
  116. }
  117.  
  118. function Next_onclick()
  119. {
  120.     var collreponses = NextQuestion.all.item("reponse") ;
  121.     var collchoix = collreponses[IndexQuestion].all.item("choix");
  122.     for ( i = 0 ; i < collchoix.length ; i++)
  123.         collchoix[i].style.display = "none" ;
  124.     IndexQuestion ++ ;
  125.     if(IndexQuestion >= 12)
  126.     {
  127.         NextQuestion.style.display = "none" ;
  128.         QuizzGB1.style.display = "none" ;
  129.         comments.style.display = "none" ;
  130.         Fin.style.display = "block" ;
  131.         return ;
  132.     }
  133.     NextQuestion.style.display = "none" ;
  134.     comments.style.display = "none" ;
  135.     start_onclick() ;
  136.     return ;
  137. }
  138.  
  139. function End_onclick()
  140. {
  141.     NextQuestion.style.display = "none" ;
  142.         QuizzGB1.style.display = "none" ;
  143.         comments.style.display = "none" ;
  144.         Fin.style.display = "none" ;
  145. }        
  146. //-->
  147. </SCRIPT>
  148. </HEAD>
  149. <BODY LANGUAGE=javascript  onload="return window_onload()">
  150.  
  151. <!*********************************************************************************
  152. ************************************************************************************
  153.                             Aide 
  154. ************************************************************************************
  155. ***********************************************************************************->
  156. <div id="aide" 
  157. name = "aide" 
  158. language="javascript"
  159. class="defaulttext"
  160. style = "DISPLAY : none">
  161.  
  162. <span>
  163. Welcome to TheoQuiz number one. 
  164. <p></p>
  165. To play, read the question then say an answer by speaking clearly into the microphone in front of you.<br>
  166.  
  167. If you change your mind, say another answer then say "Validate". <br>
  168. Wait for the reactions to your answers to come up on the screen. 
  169. To go to the next question, say "Next question". 
  170. <p></p>
  171. At the end of the quiz, say End to finish the game or "play again" if you want to play again. 
  172.  
  173. If you want help, say Help. 
  174. If you want to leave the game, say Quit or Goodbye. 
  175. <p></p>
  176. ⌐ Theorom Productions, February 2000.
  177. Thanks to Raymond Smullyan for inspiration from his book ½ The riddle of Scheherazade ╗ published by Harcourt and Brace.
  178. </span>
  179. <p></p>
  180.  
  181. <button
  182. name="start" 
  183. id="start"
  184. language ="javascript" 
  185. value="Start game" 
  186. onclick="return start_onclick()">
  187. start game
  188. </button> 
  189. </div>
  190.  
  191.  
  192. <div id=QuizzGB1 class ="defaulttext" style="DISPLAY : none">
  193. <!*********************************************************************************
  194. ************************************************************************************
  195.                             Question 1
  196. ************************************************************************************
  197. ***********************************************************************************->
  198. <span id="question" name="question" style="DISPLAY : none" >
  199. <H1>
  200. Question 1
  201. </H1> 
  202. <p></p>
  203. <H3>
  204. What does an elephant do when it is caught in a tree ? 
  205. </H3>
  206. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  207.  
  208.     <TR>
  209.         <TD>
  210.             <div align="center"> 
  211.             <input type="radio" name="radiobutton" value="radiobutton">
  212.             </div>
  213.         </TD>
  214.         <TD>
  215.             <div align="left">
  216.             It waits until autumn and floats down on a leaf!
  217.             </div>
  218.         </TD>
  219.     </TR>
  220.     <TR>
  221.         <TD>
  222.             <div align="center"> 
  223.             <input type="radio" name="radiobutton" value="radiobutton">
  224.             </div>
  225.             </TD>
  226.         <TD>
  227.         <div align="left">
  228.             Uses his mobile phone to call for help ! 
  229.             </div>
  230.         </TD>
  231.     </TR>
  232.     <TR>
  233.         <TD colspan="2" align="center" >
  234.         <input type="button" value="Validate" 
  235.         onclick="verifie_reponse(1);" name="button">
  236.         </TD>
  237.         
  238.     </TR>
  239. </TABLE>
  240. </FORM>
  241. </span>
  242.  
  243.  
  244. <!*********************************************************************************
  245. ************************************************************************************
  246.                             Question 2
  247. ************************************************************************************
  248. ***********************************************************************************->
  249. <span id="question" name="question" style="DISPLAY : none" >
  250. <H1>
  251. Question 2
  252. </H1> 
  253. <p></p>
  254. <H3>
  255. How many elephants can you put in a Mini ? 
  256. </H3>
  257. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  258.  
  259.     <TR>
  260.         <TD>
  261.             <div align="center"> 
  262.             <input type="radio" name="radiobutton" value="radiobutton">
  263.             </div>
  264.         </TD>
  265.         <TD>
  266.             <div align="left">
  267.             None
  268.             </div>
  269.         </TD>
  270.     </TR>
  271.     <TR>
  272.         <TD>
  273.             <div align="center"> 
  274.             <input type="radio" name="radiobutton" value="radiobutton">
  275.             </div>
  276.             </TD>
  277.         <TD>
  278.         <div align="left">
  279.             Four 
  280.             </div>
  281.         </TD>
  282.     </TR>
  283.     <TR>
  284.         <TD>
  285.             <div align="center"> 
  286.             <input type="radio" name="radiobutton" value="radiobutton">
  287.             </div>
  288.             </TD>
  289.         <TD>
  290.         <div align="left">
  291.             Two 
  292.             </div>
  293.         </TD>
  294.     </TR>
  295.     <TR>
  296.         <TD colspan="2" align="center" >
  297.         <input type="button" value="Validate" 
  298.         onClick="verifie_reponse(2);" name="button">
  299.         </TD>
  300.         
  301.     </TR>
  302. </TABLE>
  303. </FORM>
  304. </span>
  305.  
  306. <!*********************************************************************************
  307. ************************************************************************************
  308.                             Question 3
  309. ************************************************************************************
  310. ***********************************************************************************->
  311.  
  312. <span id="question" name="question" style="DISPLAY : none" >
  313. <H1>
  314. Question 3
  315. </H1> 
  316. <p></p>
  317. <H3>
  318. How do you know when four elephants have been in your fridge ?  
  319. </H3>
  320. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  321.  
  322.     <TR>
  323.         <TD>
  324.             <div align="center"> 
  325.             <input type="radio" name="radiobutton" value="radiobutton">
  326.             </div>
  327.         </TD>
  328.         <TD>
  329.             <div align="left">
  330.             There are footprints in the butter.
  331.             </div>
  332.         </TD>
  333.     </TR>
  334.     <TR>
  335.         <TD>
  336.             <div align="center"> 
  337.             <input type="radio" name="radiobutton" value="radiobutton">
  338.             </div>
  339.             </TD>
  340.         <TD>
  341.         <div align="left">
  342.             The fridge is broken. 
  343.             </div>
  344.         </TD>
  345.     </TR>
  346.     <TR>
  347.         <TD>
  348.             <div align="center"> 
  349.             <input type="radio" name="radiobutton" value="radiobutton">
  350.             </div>
  351.             </TD>
  352.         <TD>
  353.         <div align="left">
  354.             ThereÆs a mini car parked outside the front door. 
  355.             </div>
  356.         </TD>
  357.     </TR>
  358.     <TR>
  359.         <TD colspan="2" align="center" >
  360.         <input type="button" value="Validate" 
  361.         onClick="verifie_reponse(3);" name="button">
  362.         </TD>
  363.         
  364.     </TR>
  365. </TABLE>
  366. </FORM>
  367. </span>
  368. <!*********************************************************************************
  369. ************************************************************************************
  370.                             Question 4
  371. ************************************************************************************
  372. ***********************************************************************************->
  373. <span id="question" name="question" style="DISPLAY : none" >
  374. <H1>
  375. Question 4
  376. </H1> 
  377. <p></p>
  378. <H3>
  379. A customer wants to make one large circular chain out of six chains with five
  380. links each. The jeweller tells him that for each link that he opens, 
  381. it will cost him one piece of silver. 
  382. How many pieces of silver are needed for the job ?  
  383. </H3>
  384. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  385.  
  386.     <TR>
  387.         <TD>
  388.             <div align="center"> 
  389.             <input type="radio" name="radiobutton" value="radiobutton">
  390.             </div>
  391.         </TD>
  392.         <TD>
  393.             <div align="left">
  394.             Five pieces
  395.             </div>
  396.         </TD>
  397.     </TR>
  398.     <TR>
  399.         <TD>
  400.             <div align="center"> 
  401.             <input type="radio" name="radiobutton" value="radiobutton">
  402.             </div>
  403.             </TD>
  404.         <TD>
  405.         <div align="left">
  406.             Six pieces.
  407.             </div>
  408.         </TD>
  409.     </TR>
  410.     <TR>
  411.         <TD>
  412.             <div align="center"> 
  413.             <input type="radio" name="radiobutton" value="radiobutton">
  414.             </div>
  415.             </TD>
  416.         <TD>
  417.         <div align="left">
  418.             Twelve pieces .
  419.             </div>
  420.         </TD>
  421.     </TR>
  422.     <TR>
  423.         <TD colspan="2" align="center" >
  424.         <input type="button" value="Validate" 
  425.         onClick="verifie_reponse(4);" name="button">
  426.         </TD>
  427.         
  428.     </TR>
  429. </TABLE>
  430. </FORM>
  431. </span>
  432. <!*********************************************************************************
  433. ************************************************************************************
  434.                             Question 5
  435. ************************************************************************************
  436. ***********************************************************************************->
  437. <span id="question" name="question" style="DISPLAY : none" >
  438. <H1>
  439. Question 5
  440. </H1> 
  441. <p></p>
  442. <H3>
  443.  
  444. Ten thieves break into the jewellers shop and steal a bag of fifty six pearls.
  445. The senior robbers had six pearls each. The junior robbers had five pearls each.
  446. How many of the robbers were senior ? 
  447.  
  448.   
  449. </H3>
  450. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  451.  
  452.     <TR>
  453.         <TD>
  454.             <div align="center"> 
  455.             <input type="radio" name="radiobutton" value="radiobutton">
  456.             </div>
  457.         </TD>
  458.         <TD>
  459.             <div align="left">
  460.             Five 
  461.             </div>
  462.         </TD>
  463.     </TR>
  464.     <TR>
  465.         <TD>
  466.             <div align="center"> 
  467.             <input type="radio" name="radiobutton" value="radiobutton">
  468.             </div>
  469.             </TD>
  470.         <TD>
  471.         <div align="left">
  472.             Six 
  473.             </div>
  474.         </TD>
  475.     </TR>
  476.     
  477.     <TR>
  478.         <TD colspan="2" align="center" >
  479.         <input type="button" value="Validate" 
  480.         onClick="verifie_reponse(5);" name="button">
  481.         </TD>
  482.         
  483.     </TR>
  484. </TABLE>
  485. </FORM>
  486. </span>
  487. <!*********************************************************************************
  488. ************************************************************************************
  489.                             Question 6
  490. ************************************************************************************
  491. ***********************************************************************************->
  492. <span id="question" name="question" style="DISPLAY : none" >
  493. <H1>
  494. Question 6
  495. </H1> 
  496. <p></p>
  497. <H3>
  498. A farmer had a donkey. One day, someone asked him the age of his donkey.
  499. He replied : in another four years,
  500. he will be three times as old as he was four years ago.
  501. How old was the donkey ? 
  502.  
  503. </H3>
  504. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  505.  
  506.     <TR>
  507.         <TD>
  508.             <div align="center"> 
  509.             <input type="radio" name="radiobutton" value="radiobutton">
  510.             </div>
  511.         </TD>
  512.         <TD>
  513.             <div align="left">
  514.             Twelve years old.
  515.             </div>
  516.         </TD>
  517.     </TR>
  518.     <TR>
  519.         <TD>
  520.             <div align="center"> 
  521.             <input type="radio" name="radiobutton" value="radiobutton">
  522.             </div>
  523.             </TD>
  524.         <TD>
  525.         <div align="left">
  526.             Eight years old.
  527.             </div>
  528.         </TD>
  529.     </TR>
  530.     <TR>
  531.         <TD>
  532.             <div align="center"> 
  533.             <input type="radio" name="radiobutton" value="radiobutton">
  534.             </div>
  535.             </TD>
  536.         <TD>
  537.         <div align="left">
  538.             Sixteen years old. 
  539.             </div>
  540.         </TD>
  541.     </TR>
  542.     <TR>
  543.         <TD colspan="2" align="center" >
  544.         <input type="button" value="Validate" 
  545.         onClick="verifie_reponse(6);" name="button">
  546.         </TD>
  547.         
  548.     </TR>
  549. </TABLE>
  550. </FORM>
  551. </span>
  552. <!*********************************************************************************
  553. ************************************************************************************
  554.                             Question 7
  555. ************************************************************************************
  556. ***********************************************************************************->
  557. <span id="question" name="question" style="DISPLAY : none" >
  558. <H1>
  559. Question 7
  560. </H1> 
  561. <p></p>
  562. <H3>
  563. One day, the farmer asked three people to guess the colour of his donkey. 
  564. John said : I bet that he is not black. 
  565. Jack said  : I bet that he is brown or grey. 
  566. Jim said : I bet that he is brown. 
  567. The farmer then said : it so happens that at least one of you has guessed right and at least one of you has guessed wrong. 
  568. What is the colour of the donkey ?
  569.  
  570.  
  571. </H3>
  572. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  573.  
  574.     <TR>
  575.         <TD>
  576.             <div align="center"> 
  577.             <input type="radio" name="radiobutton" value="radiobutton">
  578.             </div>
  579.         </TD>
  580.         <TD>
  581.             <div align="left">
  582.             Black.
  583.             </div>
  584.         </TD>
  585.     </TR>
  586.     <TR>
  587.         <TD>
  588.             <div align="center"> 
  589.             <input type="radio" name="radiobutton" value="radiobutton">
  590.             </div>
  591.             </TD>
  592.         <TD>
  593.         <div align="left">
  594.             Gray.
  595.             </div>
  596.         </TD>
  597.     </TR>
  598.     <TR>
  599.         <TD>
  600.             <div align="center"> 
  601.             <input type="radio" name="radiobutton" value="radiobutton">
  602.             </div>
  603.             </TD>
  604.         <TD>
  605.         <div align="left">
  606.             Brown. 
  607.             </div>
  608.         </TD>
  609.     </TR>
  610.     <TR>
  611.         <TD colspan="2" align="center" >
  612.         <input type="button" value="Validate" 
  613.         onClick="verifie_reponse(7);" name="button">
  614.         </TD>
  615.         
  616.     </TR>
  617. </TABLE>
  618. </FORM>
  619. </span>
  620. <!*********************************************************************************
  621. ************************************************************************************
  622.                             Question 8
  623. ************************************************************************************
  624. ***********************************************************************************->
  625. <span id="question" name="question" style="DISPLAY : none" >
  626. <H1>
  627. Question 8
  628. </H1> 
  629. <p></p>
  630. <H3>
  631. Finish this popular saying. 
  632. You can take a horse to water but ...
  633. </H3>
  634. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  635.  
  636.     <TR>
  637.         <TD>
  638.             <div align="center"> 
  639.             <input type="radio" name="radiobutton" value="radiobutton">
  640.             </div>
  641.         </TD>
  642.         <TD>
  643.             <div align="left">
  644.             You canÆt make him eat.
  645.             </div>
  646.         </TD>
  647.     </TR>
  648.     <TR>
  649.         <TD>
  650.             <div align="center"> 
  651.             <input type="radio" name="radiobutton" value="radiobutton">
  652.             </div>
  653.             </TD>
  654.         <TD>
  655.         <div align="left">
  656.             You canÆt make him jump.
  657.             </div>
  658.         </TD>
  659.     </TR>
  660.     <TR>
  661.         <TD>
  662.             <div align="center"> 
  663.             <input type="radio" name="radiobutton" value="radiobutton">
  664.             </div>
  665.             </TD>
  666.         <TD>
  667.         <div align="left">
  668.             You canÆt make him drink. 
  669.             </div>
  670.         </TD>
  671.     </TR>
  672.     <TR>
  673.         <TD colspan="2" align="center" >
  674.         <input type="button" value="Validate" 
  675.         onClick="verifie_reponse(8);" name="button">
  676.         </TD>
  677.         
  678.     </TR>
  679. </TABLE>
  680. </FORM>
  681. </span>
  682.  
  683. <!*********************************************************************************
  684. ************************************************************************************
  685.                             Question 9
  686. ************************************************************************************
  687. ***********************************************************************************->
  688. <span id="question" name="question" style="DISPLAY : none" >
  689. <H1>
  690. Question 9
  691. </H1> 
  692. <p></p>
  693. <H3>
  694. Finish this popular saying. 
  695. Make hayà
  696.  
  697.  
  698. </H3>
  699. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  700.  
  701.     <TR>
  702.         <TD>
  703.             <div align="center"> 
  704.             <input type="radio" name="radiobutton" value="radiobutton">
  705.             </div>
  706.         </TD>
  707.         <TD>
  708.             <div align="left">
  709.             Whilst the sun shines.
  710.             </div>
  711.         </TD>
  712.     </TR>
  713.     <TR>
  714.         <TD>
  715.             <div align="center"> 
  716.             <input type="radio" name="radiobutton" value="radiobutton">
  717.             </div>
  718.             </TD>
  719.         <TD>
  720.         <div align="left">
  721.             Whilst the horse is drinking.
  722.             </div>
  723.         </TD>
  724.     </TR>
  725.     <TR>
  726.         <TD>
  727.             <div align="center"> 
  728.             <input type="radio" name="radiobutton" value="radiobutton">
  729.             </div>
  730.             </TD>
  731.         <TD>
  732.         <div align="left">
  733.             In July.
  734.             </div>
  735.         </TD>
  736.     </TR>
  737.     <TR>
  738.         <TD colspan="2" align="center" >
  739.         <input type="button" value="Validate" 
  740.         onClick="verifie_reponse(9);" name="button">
  741.         </TD>
  742.         
  743.     </TR>
  744. </TABLE>
  745. </FORM>
  746. </span>
  747. <!*********************************************************************************
  748. ************************************************************************************
  749.                             Question 10
  750. ************************************************************************************
  751. ***********************************************************************************->
  752. <span id="question" name="question" style="DISPLAY : none" >
  753. <H1>
  754. Question 10
  755. </H1> 
  756. <p></p>
  757. <H3>
  758. John, Jack and Jim were good friends. 
  759. Either John or Jack is the eldest of the three. 
  760. Either Jim is the eldest or John is the youngest. 
  761. Who is the eldest ? 
  762. </H3>
  763. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  764.  
  765.     <TR>
  766.         <TD>
  767.             <div align="center"> 
  768.             <input type="radio" name="radiobutton" value="radiobutton">
  769.             </div>
  770.         </TD>
  771.         <TD>
  772.             <div align="left">
  773.             John
  774.             </div>
  775.         </TD>
  776.     </TR>
  777.     <TR>
  778.         <TD>
  779.             <div align="center"> 
  780.             <input type="radio" name="radiobutton" value="radiobutton">
  781.             </div>
  782.             </TD>
  783.         <TD>
  784.         <div align="left">
  785.             Jack
  786.             </div>
  787.         </TD>
  788.     </TR>
  789.     <TR>
  790.         <TD>
  791.             <div align="center"> 
  792.             <input type="radio" name="radiobutton" value="radiobutton">
  793.             </div>
  794.             </TD>
  795.         <TD>
  796.         <div align="left">
  797.             Jim
  798.             </div>
  799.         </TD>
  800.     </TR>
  801.     <TR>
  802.         <TD colspan="2" align="center" >
  803.         <input type="button" value="Validate" 
  804.         onClick="verifie_reponse(10);" name="button">
  805.         </TD>
  806.         
  807.     </TR>
  808. </TABLE>
  809. </FORM>
  810. </span>
  811. <!*********************************************************************************
  812. ************************************************************************************
  813.                             Question 11
  814. ************************************************************************************
  815. ***********************************************************************************->
  816. <span id="question" name="question" style="DISPLAY : none" >
  817. <H1>
  818. Question 11
  819. </H1> 
  820. <p></p>
  821. <H3>
  822. One day, someone stole the donkey. John, Jack and Jim were accused. This is what they said at the trial. 
  823. John : I didnÆt steal it. 
  824. Jack : Jim certainly did not. 
  825. Jim : Yes, I did. 
  826. Later on, two of them confessed to having lied. Who stole the donkey ?
  827.  
  828. </H3>
  829. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  830.  
  831.     <TR>
  832.         <TD>
  833.             <div align="center"> 
  834.             <input type="radio" name="radiobutton" value="radiobutton">
  835.             </div>
  836.         </TD>
  837.         <TD>
  838.             <div align="left">
  839.             John
  840.             </div>
  841.         </TD>
  842.     </TR>
  843.     <TR>
  844.         <TD>
  845.             <div align="center"> 
  846.             <input type="radio" name="radiobutton" value="radiobutton">
  847.             </div>
  848.             </TD>
  849.         <TD>
  850.         <div align="left">
  851.             Jack
  852.             </div>
  853.         </TD>
  854.     </TR>
  855.     <TR>
  856.         <TD>
  857.             <div align="center"> 
  858.             <input type="radio" name="radiobutton" value="radiobutton">
  859.             </div>
  860.             </TD>
  861.         <TD>
  862.         <div align="left">
  863.             Jim
  864.             </div>
  865.         </TD>
  866.     </TR>
  867.     <TR>
  868.         <TD colspan="2" align="center" >
  869.         <input type="button" value="Validate" 
  870.         onClick="verifie_reponse(11);" name="button">
  871.         </TD>
  872.         
  873.     </TR>
  874. </TABLE>
  875. </FORM>
  876. </span>
  877. <!*********************************************************************************
  878. ************************************************************************************
  879.                             Question 12
  880. ************************************************************************************
  881. ***********************************************************************************->
  882. <span id="question" name="question" style="DISPLAY : none" >
  883. <H1>
  884. Question 12
  885. </H1> 
  886. <p></p>
  887. <H3>
  888. The next day, the horse disappeared and again John, Jack and Jim are accused.
  889.  At the trial, this is what they said.: <br>
  890. Jack : Jim did not steal it.<br> 
  891. Jim : This is true. .<br> 
  892. John : Jack is innocent.<br> 
  893. This time, the actual thief told the truth but they didnÆt all tell the truth.
  894. Who stole the horse ?
  895.  
  896.  
  897. </H3>
  898. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  899.  
  900.     <TR>
  901.         <TD>
  902.             <div align="center"> 
  903.             <input type="radio" name="radiobutton" value="radiobutton">
  904.             </div>
  905.         </TD>
  906.         <TD>
  907.             <div align="left">
  908.             Jack
  909.             </div>
  910.         </TD>
  911.     </TR>
  912.     <TR>
  913.         <TD>
  914.             <div align="center"> 
  915.             <input type="radio" name="radiobutton" value="radiobutton">
  916.             </div>
  917.             </TD>
  918.         <TD>
  919.         <div align="left">
  920.             Jim
  921.             </div>
  922.         </TD>
  923.     </TR>
  924.     <TR>
  925.         <TD>
  926.             <div align="center"> 
  927.             <input type="radio" name="radiobutton" value="radiobutton">
  928.             </div>
  929.             </TD>
  930.         <TD>
  931.         <div align="left">
  932.             John
  933.             </div>
  934.         </TD>
  935.     </TR>
  936.     <TR>
  937.         <TD colspan="2" align="center" >
  938.         <input type="button" value="Validate" 
  939.         onClick="verifie_reponse(12);" name="button">
  940.         </TD>
  941.         
  942.     </TR>
  943. </TABLE>
  944. </FORM>
  945. </span>
  946. </div>
  947.  
  948. <div id="NextQuestion" 
  949. class="defaulttext"
  950. name="NextQuestion"
  951. style="DISPLAY: none">
  952. <!*********************************************************************************
  953. ************************************************************************************
  954.                             rΘponse 1
  955. ************************************************************************************
  956. ***********************************************************************************->
  957. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  958. <span id="choix" name = "choix" style = "DISPLAY : none">
  959. Yes 
  960. </span>
  961.  
  962. <span id="choix" name = "choix" style = "DISPLAY : none">
  963. No, although most elephants these days never leave home without them. 
  964. </span>
  965.  
  966. </div>
  967.  
  968. <!*********************************************************************************
  969. ************************************************************************************
  970.                             rΘponse 2
  971. ************************************************************************************
  972. ***********************************************************************************->
  973. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  974. <span id="choix" name = "choix" style = "DISPLAY : none">
  975. No ! 
  976. </span>
  977.  
  978. <span id="choix" name = "choix" style = "DISPLAY : none">
  979. Yes ! 
  980. </span>
  981.  
  982. <span id="choix" name = "choix" style = "DISPLAY : none">
  983. No, there is still place for two more !  
  984. </span>
  985. </div>
  986.  
  987. <!*********************************************************************************
  988. ************************************************************************************
  989.                             rΘponse 3
  990. ************************************************************************************
  991. ***********************************************************************************->
  992. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  993. <span id="choix" name = "choix" style = "DISPLAY : none">
  994. This is very likely to happen but not quite the answer.  
  995. </span>
  996.  
  997. <span id="choix" name = "choix" style = "DISPLAY : none">
  998. Time to get a new fridge ?  
  999. </span>
  1000.  
  1001. <span id="choix" name = "choix" style = "DISPLAY : none">
  1002. Yes ! 
  1003. </span>
  1004. </div>
  1005.  
  1006. <!*********************************************************************************
  1007. ************************************************************************************
  1008.                             rΘponse 4
  1009. ************************************************************************************
  1010. ***********************************************************************************->
  1011. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1012. <span id="choix" name = "choix" style = "DISPLAY : none">
  1013. A possibility.  
  1014. </span>
  1015.  
  1016. <span id="choix" name = "choix" style = "DISPLAY : none">
  1017. Yes !  
  1018. </span>
  1019.  
  1020. <span id="choix" name = "choix" style = "DISPLAY : none">
  1021. No.The answer is six. 
  1022. </span>
  1023. </div>
  1024.  
  1025. <!*********************************************************************************
  1026. ************************************************************************************
  1027.                             rΘponse 5
  1028. ************************************************************************************
  1029. ***********************************************************************************->
  1030. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1031. <span id="choix" name = "choix" style = "DISPLAY : none">
  1032. No. 
  1033. </span>
  1034.  
  1035. <span id="choix" name = "choix" style = "DISPLAY : none">
  1036. Yes !  
  1037. </span>
  1038. </div>
  1039.  
  1040. <!*********************************************************************************
  1041. ************************************************************************************
  1042.                             rΘponse 6
  1043. ************************************************************************************
  1044. ***********************************************************************************->
  1045. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1046. <span id="choix" name = "choix" style = "DISPLAY : none">
  1047. No. 
  1048. </span>
  1049.  
  1050. <span id="choix" name = "choix" style = "DISPLAY : none">
  1051. Yes !  
  1052. </span>
  1053.  
  1054. <span id="choix" name = "choix" style = "DISPLAY : none">
  1055. Do donkeys live that long ?
  1056. </span>
  1057.  
  1058. </div>
  1059.  
  1060. <!*********************************************************************************
  1061. ************************************************************************************
  1062.                             rΘponse 7
  1063. ************************************************************************************
  1064. ***********************************************************************************->
  1065. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1066. <span id="choix" name = "choix" style = "DISPLAY : none">
  1067. No. If the donkey were black, all three guesses would be wrong. 
  1068. </span>
  1069.  
  1070. <span id="choix" name = "choix" style = "DISPLAY : none">
  1071. Yes !  
  1072. </span>
  1073.  
  1074. <span id="choix" name = "choix" style = "DISPLAY : none">
  1075. No.If the donkey were brown, all three guesses would be correct. 
  1076. </span>
  1077.  
  1078. </div>
  1079.  
  1080. <!*********************************************************************************
  1081. ************************************************************************************
  1082.                             rΘponse 8
  1083. ************************************************************************************
  1084. ***********************************************************************************->
  1085. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1086. <span id="choix" name = "choix" style = "DISPLAY : none">
  1087. Do you eat water ?  
  1088. </span>
  1089.  
  1090. <span id="choix" name = "choix" style = "DISPLAY : none">
  1091. No, this is not an obstacle course !  
  1092. </span>
  1093.  
  1094. <span id="choix" name = "choix" style = "DISPLAY : none">
  1095. Yes. <br>
  1096. In other words, you cannot force people to accept your help or advice.
  1097. </span>
  1098. </div>
  1099.  
  1100. <!*********************************************************************************
  1101. ************************************************************************************
  1102.                             rΘponse 9
  1103. ************************************************************************************
  1104. ***********************************************************************************->
  1105. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1106. <span id="choix" name = "choix" style = "DISPLAY : none">
  1107. Yes.   
  1108. </span>
  1109.  
  1110. <span id="choix" name = "choix" style = "DISPLAY : none">
  1111. Not quite, although whilst the horse is drinking, it would be a good idea to have a drink yourself..  
  1112. </span>
  1113.  
  1114. <span id="choix" name = "choix" style = "DISPLAY : none">
  1115. This is when hay is made but not the saying. 
  1116. </span>
  1117. </div>
  1118.  
  1119.  
  1120. <!*********************************************************************************
  1121. ************************************************************************************
  1122.                             rΘponse 10
  1123. ************************************************************************************
  1124. ***********************************************************************************->
  1125. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1126.  
  1127.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1128.     No, he is the youngest.   
  1129.     </span>
  1130.  
  1131.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1132.     Yes. 
  1133.     </span>
  1134.  
  1135.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1136.     No, Jim is in the middle.  
  1137.     </span>
  1138.     
  1139. </div>
  1140.  
  1141. <!*********************************************************************************
  1142. ************************************************************************************
  1143.                             rΘponse 11
  1144. ************************************************************************************
  1145. ***********************************************************************************->
  1146. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1147.  
  1148.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1149.     Yes.    
  1150.     </span>
  1151.  
  1152.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1153.     No. 
  1154.     </span>
  1155.  
  1156.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1157.     No.  
  1158.     </span>
  1159.  
  1160.  
  1161. </div>
  1162.  
  1163. <!*********************************************************************************
  1164. ************************************************************************************
  1165.                             rΘponse 12
  1166. ************************************************************************************
  1167. ***********************************************************************************->
  1168. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1169.  
  1170.  
  1171.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1172.     Yes, he stole the horse and did indeed tell the truth.     
  1173.     </span>
  1174.  
  1175.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1176.     No. He did not tell the truth but he did not steal the horse.  
  1177.     </span>
  1178.  
  1179.     <span id="choix" name = "choix" style = "DISPLAY : none">
  1180.     No, even if he did lie, he did not steal the horse.   
  1181.     </span>
  1182.  
  1183.  
  1184. </div>
  1185.  
  1186. <span >
  1187.     <center>
  1188.     <button id="Next" 
  1189.     language="javascript" 
  1190.     name = "Next" 
  1191.     value="Next Question" 
  1192.     onclick ="return Next_onclick()" >
  1193.     Next Question
  1194.     </button>
  1195.     </center>
  1196. </span>
  1197.  
  1198. </div>
  1199.  
  1200.  
  1201. <!*********************************************************************************
  1202. ************************************************************************************
  1203.                             Les commentaires
  1204. ************************************************************************************
  1205. ***********************************************************************************->
  1206.  
  1207. <DIV id="comments" name="comments" class="infotext">
  1208.     <center>
  1209.     <span id="lescore" name="lescore"  >
  1210.     
  1211.     </span>
  1212.     </center>
  1213.     <span id="lecommentaire" name="lecommentaire">
  1214.     
  1215.     </span>
  1216.  
  1217. </DIV>
  1218.  
  1219.  
  1220. <!*********************************************************************************
  1221. ************************************************************************************
  1222.                             La fin
  1223. ************************************************************************************
  1224. ***********************************************************************************->
  1225. <DIV id="Fin" name="Fin" class="defaulttext" style="DISPLAY : none">
  1226.     
  1227. Bravo. You have finished your first Theo game. What do you want to do now ?
  1228. <button id="end" name ="end" onclick="return End_onclick()">End </button>   <button id="again" name"again"
  1229.  onclick="InitQuizz()">Play again</button>
  1230.  
  1231. </DIV>
  1232.  
  1233.  
  1234. </BODY>
  1235. </HTML>
  1236.  
  1237.  
  1238.